.deepsource.toml
.gitignore
.pre-commit-config.yaml
.readthedocs.yaml
Dockerfile
LICENSE
README.md
environment.yml
environment_win.yml
pyproject.toml
requirements.txt
rtd_environment.yml
setup.cfg
setup.py
tox.ini
.github/ISSUE_TEMPLATE/bug_report.md
.github/ISSUE_TEMPLATE/feature_request.md
.github/workflows/main.yml
.github/workflows/publish.yml
Montreal_Forced_Aligner.egg-info/PKG-INFO
Montreal_Forced_Aligner.egg-info/SOURCES.txt
Montreal_Forced_Aligner.egg-info/dependency_links.txt
Montreal_Forced_Aligner.egg-info/entry_points.txt
Montreal_Forced_Aligner.egg-info/requires.txt
Montreal_Forced_Aligner.egg-info/top_level.txt
ci/mfa_publish.yml
docs/Makefile
docs/make.bat
docs/source/conf.py
docs/source/external_links.py
docs/source/getting_started.rst
docs/source/index.rst
docs/source/installation.rst
docs/source/_static/MFA_default.svg
docs/source/_static/MFA_dnn.svg
docs/source/_static/MFA_dnn_ivectors.svg
docs/source/_static/MFA_paper_Interspeech2017.pdf
docs/source/_static/MFA_poster_LSA2017.pdf
docs/source/_static/favicon.ico
docs/source/_static/interrogate_badge.svg
docs/source/_static/librispeech_textgrid.png
docs/source/_static/logo.svg
docs/source/_static/logo_long.svg
docs/source/_static/logo_stacked.svg
docs/source/_static/multiple_speakers_output_textgrid.png
docs/source/_static/multiple_speakers_textgrid.png
docs/source/_static/css/style.css
docs/source/_templates/sidebar-nav-bs.html
docs/source/_templates/version.html
docs/source/_templates/autosummary/attribute.rst
docs/source/_templates/autosummary/base.rst
docs/source/_templates/autosummary/class.rst
docs/source/_templates/autosummary/function.rst
docs/source/_templates/autosummary/method.rst
docs/source/_templates/autosummary/property.rst
docs/source/changelog/changelog_1.0.rst
docs/source/changelog/changelog_2.0.rst
docs/source/changelog/index.rst
docs/source/first_steps/example.rst
docs/source/first_steps/index.rst
docs/source/first_steps/tutorials.rst
docs/source/reference/core_index.rst
docs/source/reference/index.rst
docs/source/reference/top_level_index.rst
docs/source/reference/acoustic_modeling/helper.rst
docs/source/reference/acoustic_modeling/index.rst
docs/source/reference/acoustic_modeling/training.rst
docs/source/reference/alignment/alignment.rst
docs/source/reference/alignment/helper.rst
docs/source/reference/alignment/index.rst
docs/source/reference/corpus/index.rst
docs/source/reference/dictionary/helper.rst
docs/source/reference/dictionary/index.rst
docs/source/reference/dictionary/main.rst
docs/source/reference/dictionary/training.rst
docs/source/reference/g2p/generator.rst
docs/source/reference/g2p/helper.rst
docs/source/reference/g2p/index.rst
docs/source/reference/g2p_modeling/helper.rst
docs/source/reference/g2p_modeling/index.rst
docs/source/reference/g2p_modeling/training.rst
docs/source/reference/helper/abc.rst
docs/source/reference/helper/command_line.rst
docs/source/reference/helper/config.rst
docs/source/reference/helper/data.rst
docs/source/reference/helper/exceptions.rst
docs/source/reference/helper/helper.rst
docs/source/reference/helper/index.rst
docs/source/reference/helper/textgrid.rst
docs/source/reference/helper/utils.rst
docs/source/reference/ivector/helper.rst
docs/source/reference/ivector/index.rst
docs/source/reference/ivector/training.rst
docs/source/reference/language_modeling/helper.rst
docs/source/reference/language_modeling/index.rst
docs/source/reference/language_modeling/training.rst
docs/source/reference/segmentation/helper.rst
docs/source/reference/segmentation/index.rst
docs/source/reference/segmentation/main.rst
docs/source/reference/transcription/helper.rst
docs/source/reference/transcription/index.rst
docs/source/reference/transcription/main.rst
docs/source/reference/validation/helper.rst
docs/source/reference/validation/index.rst
docs/source/reference/validation/main.rst
docs/source/user_guide/commands.rst
docs/source/user_guide/data_validation.rst
docs/source/user_guide/glossary.rst
docs/source/user_guide/index.rst
docs/source/user_guide/configuration/acoustic_model_adapt.rst
docs/source/user_guide/configuration/acoustic_modeling.rst
docs/source/user_guide/configuration/g2p.rst
docs/source/user_guide/configuration/global.rst
docs/source/user_guide/configuration/index.rst
docs/source/user_guide/configuration/ivector.rst
docs/source/user_guide/configuration/lm.rst
docs/source/user_guide/configuration/segment.rst
docs/source/user_guide/configuration/transcription.rst
docs/source/user_guide/formats/corpus_structure.rst
docs/source/user_guide/formats/dictionary.rst
docs/source/user_guide/formats/index.rst
docs/source/user_guide/models/acoustic.rst
docs/source/user_guide/models/dictionary.rst
docs/source/user_guide/models/g2p.rst
docs/source/user_guide/models/index.rst
docs/source/user_guide/models/lm.rst
docs/source/user_guide/workflows/adapt_acoustic_model.rst
docs/source/user_guide/workflows/alignment.rst
docs/source/user_guide/workflows/anchor.rst
docs/source/user_guide/workflows/classify_speakers.rst
docs/source/user_guide/workflows/corpus_creation.rst
docs/source/user_guide/workflows/create_segments.rst
docs/source/user_guide/workflows/dictionary_generating.rst
docs/source/user_guide/workflows/g2p_train.rst
docs/source/user_guide/workflows/index.rst
docs/source/user_guide/workflows/train_acoustic_model.rst
docs/source/user_guide/workflows/train_ivector.rst
docs/source/user_guide/workflows/training_dictionary.rst
docs/source/user_guide/workflows/training_lm.rst
docs/source/user_guide/workflows/transcribing.rst
montreal_forced_aligner/__init__.py
montreal_forced_aligner/__main__.py
montreal_forced_aligner/_version.py
montreal_forced_aligner/abc.py
montreal_forced_aligner/config.py
montreal_forced_aligner/data.py
montreal_forced_aligner/exceptions.py
montreal_forced_aligner/helper.py
montreal_forced_aligner/models.py
montreal_forced_aligner/segmenter.py
montreal_forced_aligner/speaker_classifier.py
montreal_forced_aligner/textgrid.py
montreal_forced_aligner/utils.py
montreal_forced_aligner/validator.py
montreal_forced_aligner/acoustic_modeling/__init__.py
montreal_forced_aligner/acoustic_modeling/base.py
montreal_forced_aligner/acoustic_modeling/lda.py
montreal_forced_aligner/acoustic_modeling/monophone.py
montreal_forced_aligner/acoustic_modeling/sat.py
montreal_forced_aligner/acoustic_modeling/trainer.py
montreal_forced_aligner/acoustic_modeling/triphone.py
montreal_forced_aligner/alignment/__init__.py
montreal_forced_aligner/alignment/adapting.py
montreal_forced_aligner/alignment/base.py
montreal_forced_aligner/alignment/mixins.py
montreal_forced_aligner/alignment/multiprocessing.py
montreal_forced_aligner/alignment/pretrained.py
montreal_forced_aligner/command_line/__init__.py
montreal_forced_aligner/command_line/adapt.py
montreal_forced_aligner/command_line/align.py
montreal_forced_aligner/command_line/anchor.py
montreal_forced_aligner/command_line/classify_speakers.py
montreal_forced_aligner/command_line/create_segments.py
montreal_forced_aligner/command_line/g2p.py
montreal_forced_aligner/command_line/mfa.py
montreal_forced_aligner/command_line/model.py
montreal_forced_aligner/command_line/train_acoustic_model.py
montreal_forced_aligner/command_line/train_dictionary.py
montreal_forced_aligner/command_line/train_g2p.py
montreal_forced_aligner/command_line/train_ivector_extractor.py
montreal_forced_aligner/command_line/train_lm.py
montreal_forced_aligner/command_line/transcribe.py
montreal_forced_aligner/command_line/utils.py
montreal_forced_aligner/command_line/validate.py
montreal_forced_aligner/corpus/__init__.py
montreal_forced_aligner/corpus/acoustic_corpus.py
montreal_forced_aligner/corpus/base.py
montreal_forced_aligner/corpus/classes.py
montreal_forced_aligner/corpus/features.py
montreal_forced_aligner/corpus/helper.py
montreal_forced_aligner/corpus/ivector_corpus.py
montreal_forced_aligner/corpus/multiprocessing.py
montreal_forced_aligner/corpus/text_corpus.py
montreal_forced_aligner/dictionary/__init__.py
montreal_forced_aligner/dictionary/mixins.py
montreal_forced_aligner/dictionary/multispeaker.py
montreal_forced_aligner/dictionary/pronunciation.py
montreal_forced_aligner/g2p/__init__.py
montreal_forced_aligner/g2p/generator.py
montreal_forced_aligner/g2p/mixins.py
montreal_forced_aligner/g2p/trainer.py
montreal_forced_aligner/ivector/__init__.py
montreal_forced_aligner/ivector/trainer.py
montreal_forced_aligner/language_modeling/__init__.py
montreal_forced_aligner/language_modeling/trainer.py
montreal_forced_aligner/transcription/__init__.py
montreal_forced_aligner/transcription/multiprocessing.py
montreal_forced_aligner/transcription/transcriber.py
tests/__init__.py
tests/conftest.py
tests/test_abc.py
tests/test_acoustic_modeling.py
tests/test_alignment_pretrained.py
tests/test_commandline_adapt.py
tests/test_commandline_align.py
tests/test_commandline_classify_speakers.py
tests/test_commandline_configure.py
tests/test_commandline_create_segments.py
tests/test_commandline_g2p.py
tests/test_commandline_history.py
tests/test_commandline_lm.py
tests/test_commandline_model.py
tests/test_commandline_train.py
tests/test_commandline_train_dict.py
tests/test_commandline_train_ivector.py
tests/test_commandline_transcribe.py
tests/test_commandline_validate.py
tests/test_config.py
tests/test_corpus.py
tests/test_dict.py
tests/test_g2p.py
tests/test_gui.py
tests/test_textgrid.py
tests/data/am/mono_model.zip
tests/data/configs/bad_align_config.yaml
tests/data/configs/basic_align_config.yaml
tests/data/configs/basic_ipa_config.yaml
tests/data/configs/basic_segment_config.yaml
tests/data/configs/basic_train_config.yaml
tests/data/configs/basic_train_lm.yaml
tests/data/configs/different_punctuation_config.yaml
tests/data/configs/g2p_config.yaml
tests/data/configs/ivector_train.yaml
tests/data/configs/lda_sat_train.yaml
tests/data/configs/lda_train.yaml
tests/data/configs/mono_align.yaml
tests/data/configs/mono_train.yaml
tests/data/configs/out_of_order_config.yaml
tests/data/configs/sat_train.yaml
tests/data/configs/train_g2p_config.yaml
tests/data/configs/transcribe.yaml
tests/data/configs/tri_train.yaml
tests/data/dictionaries/acoustic.txt
tests/data/dictionaries/basic.txt
tests/data/dictionaries/chinese_dict.txt
tests/data/dictionaries/extra_annotations.txt
tests/data/dictionaries/frclitics.txt
tests/data/dictionaries/sick.txt
tests/data/dictionaries/xsampa.txt
tests/data/dictionaries/expected/graphemes.txt
tests/data/dictionaries/expected/lexicon.text.fst
tests/data/dictionaries/expected/phone_map.txt
tests/data/dictionaries/expected/phones.txt
tests/data/dictionaries/expected/topo
tests/data/dictionaries/expected/words.txt
tests/data/dictionaries/expected/phones/extra_questions.int
tests/data/dictionaries/expected/phones/extra_questions.txt
tests/data/dictionaries/expected/phones/roots.int
tests/data/dictionaries/expected/phones/roots.txt
tests/data/dictionaries/expected/phones/sets.int
tests/data/dictionaries/expected/phones/sets.txt
tests/data/dictionaries/expected/phones/word_boundary.int
tests/data/dictionaries/expected/phones/word_boundary.txt
tests/data/lab/61-70968-0000.lab
tests/data/lab/acoustic_corpus.lab
tests/data/lab/cold_corpus.lab
tests/data/lab/cold_corpus3.lab
tests/data/lab/cold_corpus3_extra.lab
tests/data/lab/multilingual_ipa.txt
tests/data/lab/multilingual_ipa_2.txt
tests/data/lab/multilingual_ipa_3.txt
tests/data/lab/multilingual_ipa_4.txt
tests/data/lab/multilingual_ipa_5.txt
tests/data/lab/multilingual_ipa_us.txt
tests/data/lab/multilingual_ipa_us_2.txt
tests/data/lab/multilingual_ipa_us_3.txt
tests/data/lab/multilingual_ipa_us_4.txt
tests/data/lab/multilingual_ipa_us_5.txt
tests/data/lab/punctuated.lab
tests/data/lab/weird_words.lab
tests/data/lab/xsampa.lab
tests/data/lm/test_lm.arpa
tests/data/lm/test_lm.zip
tests/data/textgrid/61-70968-0000.TextGrid
tests/data/textgrid/acoustic_corpus.TextGrid
tests/data/textgrid/cold_corpus.TextGrid
tests/data/textgrid/cold_corpus3.TextGrid
tests/data/textgrid/michaelandsickmichael.TextGrid
tests/data/textgrid/michaelandsickmichael_short_tg.TextGrid
tests/data/textgrid/multilingual_ipa.TextGrid
tests/data/textgrid/multilingual_ipa_2.TextGrid
tests/data/textgrid/multilingual_ipa_3.TextGrid
tests/data/textgrid/multilingual_ipa_4.TextGrid
tests/data/textgrid/multilingual_ipa_5.TextGrid
tests/data/textgrid/multilingual_ipa_us.TextGrid
tests/data/textgrid/multilingual_ipa_us_2.TextGrid
tests/data/textgrid/multilingual_ipa_us_3.TextGrid
tests/data/textgrid/multilingual_ipa_us_4.TextGrid
tests/data/textgrid/multilingual_ipa_us_5.TextGrid
tests/data/textgrid/short_segments.TextGrid
tests/data/textgrid/vietnamese.TextGrid
tests/data/wav/61-70968-0000.flac
tests/data/wav/acoustic_corpus.wav
tests/data/wav/cold_corpus.wav
tests/data/wav/cold_corpus3.wav
tests/data/wav/cold_corpus_24bit.wav
tests/data/wav/cold_corpus_32bit_float.wav
tests/data/wav/dummy.mp3
tests/data/wav/dummy.wav
tests/data/wav/michaelandsickmichael.wav
tests/data/wav/multilingual_ipa.flac
tests/data/wav/multilingual_ipa_2.flac
tests/data/wav/multilingual_ipa_3.flac
tests/data/wav/multilingual_ipa_4.flac
tests/data/wav/multilingual_ipa_5.flac
tests/data/wav/multilingual_ipa_us.flac
tests/data/wav/multilingual_ipa_us_2.flac
tests/data/wav/multilingual_ipa_us_3.flac
tests/data/wav/multilingual_ipa_us_4.flac
tests/data/wav/multilingual_ipa_us_5.flac